home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / native.e < prev    next >
Text File  |  2000-03-25  |  5KB  |  163 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. deferred class NATIVE
  17.    --
  18.    -- An external language clause definition.
  19.    --
  20.  
  21. inherit GLOBALS;
  22.  
  23. feature
  24.  
  25.    external_tag: STRING;
  26.          -- The keyword associated with the external keyword.
  27.  
  28.    frozen pretty_print is
  29.       do
  30.          fmt.put_character('%"');
  31.          fmt.put_string(external_tag);
  32.          -- *** MUST BE UPDATED for C++ EXTERNALS ***
  33.          fmt.put_character('%"');
  34.       end;
  35.  
  36.    use_current(er: EXTERNAL_ROUTINE): BOOLEAN is
  37.       require
  38.          er /= Void;
  39.       deferred
  40.       end;
  41.  
  42.    stupid_switch_function(r: ARRAY[RUN_CLASS]; name: STRING): BOOLEAN is
  43.       require
  44.          not r.is_empty
  45.       deferred
  46.       end;
  47.  
  48.    stupid_switch_procedure(r: ARRAY[RUN_CLASS]; name: STRING): BOOLEAN is
  49.       require
  50.          not r.is_empty
  51.       deferred
  52.       end;
  53.  
  54.    c_define_function(rf8: RUN_FEATURE_8; bcn, name: STRING) is
  55.          -- Produce C to define `rf8'.
  56.       require
  57.          rf8.base_feature.first_name.to_string = name;
  58.          rf8.base_feature.base_class.name.to_string = bcn
  59.       deferred
  60.       end;
  61.  
  62.    c_mapping_function(rf8: RUN_FEATURE_8; bcn, name: STRING) is
  63.          -- Produce C to use `rf8'.
  64.       require
  65.          rf8.base_feature.first_name.to_string = name;
  66.          rf8.base_feature.base_class.name.to_string = bcn
  67.       deferred
  68.       end;
  69.  
  70.    c_define_procedure(rf7: RUN_FEATURE_7; bcn, name: STRING) is
  71.          -- Produce C to define `rf7'.
  72.       require
  73.          rf7.base_feature.first_name.to_string = name;
  74.          rf7.base_feature.base_class.name.to_string = bcn
  75.       deferred
  76.       end;
  77.  
  78.    c_mapping_procedure(rf7: RUN_FEATURE_7; bcn, name: STRING) is
  79.          -- Produce C to use `rf7'.
  80.       require
  81.          rf7.base_feature.first_name.to_string = name;
  82.          rf7.base_feature.base_class.name.to_string = bcn
  83.       deferred
  84.       end;
  85.  
  86.    jvm_add_method_for_function(rf8: RUN_FEATURE_8; bcn, name: STRING) is
  87.       require
  88.          rf8.base_feature.first_name.to_string = name;
  89.          rf8.base_feature.base_class.name.to_string = bcn
  90.       deferred
  91.       end;
  92.  
  93.    jvm_define_function(rf8: RUN_FEATURE_8; bcn, name: STRING) is
  94.          -- Produce Java byte code to define `rf8'.
  95.       require
  96.          rf8.base_feature.first_name.to_string = name;
  97.          rf8.base_feature.base_class.name.to_string = bcn
  98.       deferred
  99.       end;
  100.  
  101.    jvm_mapping_function(rf8: RUN_FEATURE_8; bcn, name: STRING) is
  102.          -- Produce Java byte code to use `rf8'.
  103.       require
  104.          rf8.base_feature.first_name.to_string = name;
  105.          rf8.base_feature.base_class.name.to_string = bcn
  106.       deferred
  107.       end;
  108.  
  109.    jvm_add_method_for_procedure(rf7: RUN_FEATURE_7; bcn, name: STRING) is
  110.       require
  111.          rf7.base_feature.first_name.to_string = name;
  112.          rf7.base_feature.base_class.name.to_string = bcn
  113.       deferred
  114.       end;
  115.  
  116.    jvm_define_procedure(rf7: RUN_FEATURE_7; bcn, name: STRING) is
  117.          -- Produce Java byte code to define `rf7'.
  118.       require
  119.          rf7.base_feature.first_name.to_string = name;
  120.          rf7.base_feature.base_class.name.to_string = bcn
  121.       deferred
  122.       end;
  123.  
  124.    jvm_mapping_procedure(rf7: RUN_FEATURE_7; bcn, name: STRING) is
  125.          -- Produce Java byte code to use `rf7'.
  126.       require
  127.          rf7.base_feature.first_name.to_string = name;
  128.          rf7.base_feature.base_class.name.to_string = bcn
  129.       deferred
  130.       end;
  131.  
  132. feature {NONE}
  133.  
  134.    fe_c2jvm(rf: RUN_FEATURE) is
  135.       do
  136.          eh.add_position(jvm.target_position);
  137.          eh.add_position(rf.start_position);
  138.          fatal_error("Command 'compile_to_jvm' cannot compile this code.");
  139.       end;
  140.  
  141.    fe_c2c(rf: RUN_FEATURE) is
  142.       do
  143.          eh.add_position(rf.start_position);
  144.          fatal_error("Command 'compile_to_c' cannot compile this code.");
  145.       end;
  146.  
  147.    make(ln: STRING) is
  148.       require
  149.          ln /= Void
  150.       do
  151.          external_tag := ln;
  152.       ensure
  153.          external_tag = ln
  154.       end;
  155.  
  156.    body: STRING is
  157.       once
  158.          !!Result.make(1024);
  159.       end;
  160.  
  161. end -- NATIVE
  162.  
  163.